home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00747_Script_13DConditional Checker < prev    next >
Text File  |  1995-05-21  |  566b  |  31 lines

  1. on exitFrame
  2.   global CCLUB, g03A, g11A, g05A, TV1
  3.   
  4.   Unloadcast
  5.   if g05A = "c" then
  6.     set TV1 = "E"
  7.   end if
  8.   
  9.   if g11A = "z" then -- never got the Princess
  10.     put "" into CClub
  11.     exit
  12.   else
  13.     if g11A = "x" then 
  14.       set CCLUB = ""
  15.       exit
  16.     else
  17.       if g11A = "c" then 
  18.         if g03A = "z" then 
  19.           set CClub = "c"
  20.           exit
  21.         else
  22.           if g03A = "c" or g03A = "x" then
  23.             set CCLUB = "S"
  24.             exit
  25.           end if
  26.         end if
  27.       end if
  28.     end if
  29.   end if 
  30.   
  31. end